home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 26
/
Cream of the Crop 26.iso
/
program
/
ccdl150l.zip
/
IO
/
FPUTS.C
< prev
next >
Wrap
C/C++ Source or Header
|
1996-06-25
|
212b
|
11 lines
#include <stdio.h>
#include <string.h>
int fputs(const char *string, FILE *stream)
{
int l = strlen(string),i;
for (i=0; i < l; i++)
if (fputc(string[i],stream) == EOF)
return EOF;
return 1;
}